home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / batch / tsbat36.zip / WILD.BAT < prev    next >
DOS Batch File  |  1992-03-21  |  460b  |  11 lines

  1. @echo off
  2. echo ┌─────────────────────────────────────────────────────────┐
  3. echo │ Wildcarded use of commands which do not allow wildcards │
  4. echo │ Usage WILD FileSpec command [Switch1] [Switch2] [...]   │
  5. echo └─────────────────────────────────────────────────────────┘
  6. for %%f in (%1) do echo %2 %3 %4 %5 %6 %7 %8 %9 %%f
  7. echo Strike a key when ready ... or use Ctrl+Break now
  8. pause > nul
  9. for %%f in (%1) do call %2 %3 %4 %5 %6 %7 %8 %9 %%f
  10. echo on
  11.